home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Sharks' Spark Hack / SparksWindow.h < prev   
C/C++ Source or Header  |  1996-06-21  |  297b  |  24 lines

  1. /*
  2.     
  3.     HelloWindow.h
  4.     
  5.     Copyright 1995 Be Incorporated, All Rights Reserved.
  6.     
  7. */
  8.  
  9. #ifndef SPARKS_WINDOW_H
  10. #define SPARKS_WINDOW_H
  11.  
  12. #ifndef _WINDOW_H
  13. #include <Window.h>
  14. #endif
  15.  
  16. class SparksWindow : public BWindow {
  17.  
  18. public:
  19.                 SparksWindow(BRect frame); 
  20. virtual    bool    QuitRequested();
  21. };
  22.  
  23. #endif
  24.